home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / button / button.rc < prev    next >
Text File  |  1995-11-25  |  4KB  |  130 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Button.Rc
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the resources for our DLL, including the TypeLib, error strings,
  13. // and versioning information.
  14. //
  15. #include "Resource.H"
  16. #include "Windows.H"
  17.  
  18. #define IDC_STATIC -1
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Bitmap and Icons that are not localized
  23. //
  24. RESID_TOOLBOX_BITMAP    BITMAP DISCARDABLE "Button.Bmp"
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. //
  28. // Our Non-Localized Type Library
  29. //
  30. 1 TYPELIB Button.TLB
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. //
  34. //    This table includes the languages supported by this server.
  35. //    Each language maps to a satalite DLL that contains error messages.
  36. //
  37. //      - if you do not want to use satellite Localization, then
  38. //        remove this table
  39. //      - TODO: add any new languages you wish to support to this table
  40. //
  41. INTLSZ_LANGMAP RCDATA DISCARDABLE 
  42. BEGIN
  43. //    Primary Language ID  SubLanguage ID          Satalite DLL
  44. //    -------------------  --------------          ------------
  45.     LANG_FRENCH,         SUBLANG_FRENCH,         "ButtonFR.DLL","\0",
  46.     LANG_JAPANESE,       SUBLANG_DEFAULT,        "ButtonJP.DLL","\0",
  47. END
  48.  
  49.  
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  53. /////////////////////////////////////////////////////////////////////////////
  54.  
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. //
  59. // String tables with Exception Information, etc.
  60. //
  61. STRINGTABLE DISCARDABLE
  62. BEGIN
  63.     IDS_PROPERTIES,                     "Button Properties"
  64.     IDS_BUTTON_GENERALPAGETITLE,        "General Properties"
  65.     IDS_BUTTON_GENERALDOCSTRING,        "Properties for the Button Control"
  66. END
  67.  
  68. /////////////////////////////////////////////////////////////////////////////
  69. //
  70. // Property Page Dialog
  71. //
  72.  
  73. IDD_PROPPAGE_BUTTONGENERAL DIALOG DISCARDABLE  0, 0, 184, 93
  74. STYLE WS_CHILD | 0x4
  75. FONT 8, "MS Sans Serif"
  76. BEGIN
  77.     EDITTEXT        IDC_CAPTION,8,23,120,14,ES_AUTOHSCROLL
  78.     LTEXT           "&Caption:",IDC_STATIC,8,11,58,10
  79. END
  80.  
  81. /////////////////////////////////////////////////////////////////////////////
  82. // Version Information
  83. /////////////////////////////////////////////////////////////////////////////
  84. //
  85. #include "dwinvers.h"
  86. #include <winver.h>
  87.  
  88. VS_VERSION_INFO VERSIONINFO
  89.  
  90. FILEVERSION    04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  91. PRODUCTVERSION    04,00,vusVersNumf2,vusVersNuml2
  92.  
  93.  
  94. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  95. #ifdef DEBUG
  96. FILEFLAGS    VS_FF_DEBUG
  97. #else
  98. FILEFLAGS    0L
  99. #endif
  100.  
  101. FILEOS        VOS_NT_WINDOWS32
  102.  
  103. FILETYPE    VFT_DLL
  104. FILESUBTYPE    0
  105. {
  106.     BLOCK "StringFileInfo"
  107.     {
  108.         BLOCK "040904B0" // Language and character set identifiers.
  109.         {
  110.             VALUE "CompanyName",     "My Company Name\0"
  111.             VALUE "FileDescription", "Button"
  112.             VALUE "FileVersion",     vszVersNumAll
  113.             VALUE "InternalName",    "Button.Ocx\0"
  114.             VALUE "LegalCopyright",  vszCopyright
  115.             VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
  116.             VALUE "ProductName",     "Button Object Library\0"
  117.             VALUE "ProductVersion",  vszVersNumAll
  118.             VALUE "Comments",        vszMakeDate
  119.             VALUE "OLESelfRegister", "\0"
  120.         }
  121.     }
  122.     BLOCK "VarFileInfo"
  123.     {
  124.         VALUE "Translation" ,0x409, 0x4b0
  125.     }
  126. }
  127.  
  128.  
  129.  
  130.